/* --- ESTILOS GERAIS E RESET --- */
* .product-html-container{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body .product-html-container{
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.product-html-container .acessorios-section .splide {
  margin-bottom: 40px;
  height: auto;
}

.product-html-container .acessorios-section .splide__pagination {
  gap: 10px;
  bottom: -17% !important;
  transform: translateY(-50%);
}

/* --- 1. A SEÇÃO PRINCIPAL (O CONTAINER) --- */
.product-html-container .hero-section {
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
  color: white;

  /* --- CENTRALIZAÇÃO PADRÃO COM FLEXBOX --- */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* --- 2. A IMAGEM DE FUNDO (A TAG <img>) --- */
.product-html-container .hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -1;
}

/* --- 3. A CAIXA DE CONTEÚDO (O TEXTO FLUTUANTE) --- */
.product-html-container .content-box {
  /* position: absolute foi removido daqui como padrão */
  background-color: rgba(0, 0, 0, 0.6);
  padding: 2rem;
  border-radius: 8px;
  max-width: 600px;
  width: 90%;
  text-align: center; /* Bom para o conteúdo centralizado */
}

/* --- 4. AS CLASSES DE POSICIONAMENTO (PARA OS CANTOS) --- */
/* Estas classes agora precisam adicionar o position: absolute */
.product-html-container .pos-top-left,
.product-html-container .pos-top-right,
.product-html-container .pos-bottom-left,
.product-html-container .pos-bottom-right {
  position: absolute;
  text-align: left; /* Alinha o texto à esquerda para os cantos */
}

.product-html-container .pos-top-left {
  top: 50px;
  left: 50px;
}

.product-html-container .pos-top-right {
  top: 50px;
  right: 50px;
}

.product-html-container .pos-bottom-left {
  bottom: 50px;
  left: 50px;
}

.product-html-container .pos-bottom-right {
  bottom: 50px;
  right: 50px;
}

/* --- 5. RESPONSIVIDADE (PARA MOBILE) --- */
@media (max-width: 768px) {
  .product-html-container .content-box {
    padding: 1.5rem;
  }

  .product-html-container .content-box h1 {
    font-size: 1.8rem;
  }

  .product-html-container .pos-top-left,
  .product-html-container .pos-top-right,
  .product-html-container .pos-bottom-left,
  .product-html-container .pos-bottom-right {
    top: 20px;
    left: 20px;
    bottom: 20px;
    right: 20px;
  }
  .product-html-container .pos-top-right {
    bottom: auto;
    left: auto;
  }
  .product-html-container .pos-top-left {
    bottom: auto;
    right: auto;
  }
  .product-html-container .pos-bottom-left {
    top: auto;
    right: auto;
  }
  .product-html-container .pos-bottom-right {
    top: auto;
    left: auto;
  }
}
